home *** CD-ROM | disk | FTP | other *** search
/ Just Call Me Internet / Just Call Me Internet.iso / prog / atari / c / stik_dev / stikspec.txt < prev   
Text File  |  1996-09-26  |  17KB  |  416 lines

  1. Description of TRANSPRT.H functions.
  2.  
  3. See transprt.h and drivers.h for associated definitions etc..
  4.  
  5.  
  6. char  * cdecl KRmalloc(int32);
  7.  
  8.   - Allocate a block of memory from STiK's internal buffer.
  9.   - Returns (char *)NULL if sufficient memory is not available.
  10.   - These memory functions are basically the code in K&R 1 pp 174 - 177
  11.     but there are some minor differences.  morecore is *never* called.
  12.     These functions use one block of memory that is Malloc'd when
  13.     the ACC loads.  Also, the header size is 8 bytes since allocations
  14.     greater than 2^16 are allowed, therefore memory is always
  15.     allocated in multiples of 8 bytes.
  16.   - Some bits in the headers are checked during KRmalloc() and KRfree()
  17.     to determine if memory corruption has occured.
  18.  
  19.  
  20. void    cdecl KRfree(char *);
  21.  
  22.   - Free a block that was allocated by KRmalloc() or KRrealloc().
  23.   - Currently, KRfree() does *not* check for a NULL pointer...
  24.     (but this is such a good idea, that I will add the test)
  25.  
  26.  
  27. int32   cdecl KRgetfree(int16 flag);
  28.  
  29.   - Return the amount of free space left in STiK's internal buffer.
  30.   - If flag is TRUE return the largest block, otherwise return
  31.     total available space.
  32.  
  33.  
  34. char  * cdecl KRrealloc(char *block, int32 newsize);
  35.  
  36.   - Change the size of an allocated block.  If newsize is greater than
  37.     oldsize, then copy the contents into the new block.
  38.   - If (newsize == 0) then free the block and return (char *)NULL.
  39.   - If (block == (char *)NULL) then allocate a new block of newsize
  40.     bytes, but zero the contents before returning.
  41.  
  42.  
  43. char  * cdecl get_err_text(int16 code);
  44.  
  45.   - Returns a pointer to a description of an internal STiK error code.
  46.     The absolute value of code is used to look up a an array of char *.
  47.     If code is out of range, a pointer to "" is returned.
  48.  
  49.  
  50. char  * cdecl getvstr(char *var);
  51.  
  52.   - Returns a pointer to the value of a STiK config variable
  53.     set in DEFAULT.CFG  The lookup is not case sensitive.
  54.     The pointer is to the first non blank char after the '='.
  55.   - If a variable does not exist, a pointer to "0" is returned.
  56.   - If a variable has no `= value' "1" is returned (present == TRUE)
  57.   - If a variable has '=', but no value, then "0" is returned.
  58.  
  59.  
  60. int16   cdecl carrier_detect(void);
  61.  
  62.   - If the config variable CDVALID is FALSE, then 0 (unknown) is returned.
  63.   - Otherwise, returns +1 for carrier, -1 for no carrier.
  64.  
  65.  
  66. int16   cdecl TCP_open(uint32 rhost, int16 rport, int16 tos, uint16 obsize);
  67.  
  68.   - Attempts to open a connection to rhost on rport.
  69.   - tos is Type of Service.  I've never experimented with non zero values.
  70.   - obsize is the size of the output buffer to allocate.
  71.     TCP_send() places data in this buffer.  Size dependant on requirements.
  72.     Bigger is not necessarily better.  500 to 2000 should be OK.
  73.   - TCP_open() returns a connection handle (0..n) or a
  74.     a negative error code.
  75.   - TCP_open() returns immediately, without waiting for the
  76.     connection to establish.
  77.  
  78.   - Passive opens:-
  79.   - If rhost is 0, then the connection becomes a LISTEN socket, and
  80.     waits for a connection request from a remote host.
  81.   - In this case, rport is the assignment of the local port
  82.     and *not* the remote port...
  83.   - There is no provision for limiting the socket to listen for
  84.     connection from a particular host or port. (ie: always INADDR_ANY)
  85.   - The port must be continually polled for input.  There is
  86.     no other way to see if a connection has been made.
  87.   - Sending data to a connection in LISTEN mode is an error.
  88.   - If a remote host makes a connection, the connection will
  89.     no longer be in LISTEN mode.  Requests from other hosts
  90.     will be denied.  To circumvent this, do another TCP_open(0,...)
  91.     when the first connection is activated.  (or have several
  92.     connections passive opened at the same time)
  93.  
  94.   - NOTE To test the current status of the socket, simply
  95.     call CNbyte_count().  If E_LISTEN is returned, then
  96.     the socket is still in TLISTEN state.  Any other function
  97.     that has a connection handle as an argument will return
  98.     the same error, except TCP_close().
  99.  
  100.   - Author's apology...  It's very rough, but it's really only
  101.     for my own testing.  If I don't have time to make something
  102.     better soon, this method should at least be usable.  The reason
  103.     that it is so rough is that I never intended having LISTEN
  104.     sockets.  Hence, this is a hack.
  105.  
  106.  
  107. int16   cdecl TCP_close(int16 cn, int16 timeout);
  108.  
  109.   - Closes a connection.  cn is the connection handle.
  110.   - Returns 0 or a negative error code.
  111.   - timeout is the time in seconds to wait for the connection to close.
  112.     TCP_close() must negotiate the close with the remote host, so
  113.     it can take some time if the net is slow.  Pending data may need
  114.     to be received and discarded before the connection closes cleanly.
  115.   - Note that TCP_close() *must* be called in order to free memory
  116.     that has been allocated for the connection.
  117.   - A timeout of 0 is acceptable for immediate close.
  118.   - If the ESC key is pressed during the timeout period, TCP_close()
  119.     returns immediately with a E_USERTIMEOUT error code.
  120.  
  121.  
  122. int16   cdecl TCP_send(int16 cn, char *buf, int16 len);
  123.  
  124.   - Send len bytes from buf on the connection cn.
  125.   - Returns E_NORMAL for success, or an error code.
  126.   - Note that the error E_OBUFFULL is *not* a fatal error.
  127.     If E_OBUFFULL is return, you should loop, for your own timeout period,
  128.     waiting for the output buffer to clear.  If you have defined a buffer
  129.     that is smaller than the block you are sending, it will never clear.
  130.  
  131.  
  132. int16   cdecl TCP_wait_state(int16 cn, int16 state, int16 timeout);
  133.  
  134.   - Wait for timeout seconds for the connection cn, to reach a particular
  135.     TCP state.  The primary use for this function is to wait for the
  136.     TESTABLISH state after calling TCP_open() (though this is not really
  137.     necessary).
  138.   - Returns E_NORMAL or an error code.
  139.   - If the ESC key is pressed while this function is waiting,
  140.     it returns E_USERTIMEOUT.
  141.  
  142.  
  143. int16   cdecl TCP_ack_wait(int16 cn, int16 timeout);
  144.  
  145.   - Wait for all data in the output buffer to be acknowledged by
  146.     the remote host.
  147.   - Note that the timeout is in milliseconds
  148.   - Returns E_NORMAL regardless of whether the timeout is reached
  149.     or the output buffer clears.
  150.   - This is a kludge that you should probably never use...
  151.  
  152.  
  153. int16   cdecl UDP_open(uint32 rhost, int16 rport);
  154.  
  155.   - Open a UDP (datagram) connection with rhost on rport.
  156.   - Returns connection handle or error code.
  157.   - Note that there is really no such thing as a UDP `connection'.
  158.     The UDP functions provide a convenient and consistent method
  159.     for communicating with remote hosts using UDP.
  160.   - UDP is used primarily by the domain name resolver.
  161.  
  162.  
  163. int16   cdecl UDP_close(int16 cn);
  164.  
  165.   - Close the UDP connection cn.
  166.   - Frees the connection handle and any blocks pending in the
  167.     input queue, returns immediately.
  168.  
  169.  
  170. int16   cdecl UDP_send(int16 cn, char *buf, int16 len);
  171.  
  172.   - Sends len bytes from buf on the connection cn.
  173.   - Returns E_NORMAL or an error code.
  174.   - NOTE that the the data will be sent as a single UDP packet, so
  175.     you should make sure that it is appropriately sized for your MTU.
  176.  
  177.  
  178. int16   cdecl CNkick(int16 cn);
  179.  
  180.   - `kick' the connection cn.
  181.   - If there is data waiting to be sent, then restart the retransmission
  182.     sequence as though it is the first transmission.
  183.     If there is no data waiting, send an ACK packet to the remote host
  184.     to let them know we're still here.
  185.   - In theory this is a pointless function.  It is provided so that when
  186.     the user starts bashing the keyboard during a long delay, the
  187.     programmer arrange that something happens as a result.  This should
  188.     save lots of valuable Atari hardware. :-))
  189.   - Since the retransmission algorithm uses exponential backoff,
  190.     (ie: timeout doubles at every retransmission) the function is
  191.     probably not entirely pointless.
  192.   - TCP specs state that excessive retransmissions should be avoided.
  193.   - Returns E_NORMAL or an error code if the connection is invalid.
  194.  
  195.  
  196. int16   cdecl CNbyte_count(int16 cn);
  197.  
  198.   - Return the number of bytes waiting in the input queue for
  199.     connection cn, or an error code.
  200.  
  201.  
  202. int16   cdecl CNget_char(int16 cn);
  203.  
  204.   - Return the next char from the input queue for cn, or
  205.     a negative error code.  A return of E_NODATA is *not* fatal.
  206.   - Note that if you are using CNget_char() for data input then
  207.     your loop *must* include CNbyte_count(), or the housekeep()
  208.     function.
  209.  
  210.  
  211. NDB   * cdecl CNget_NDB(int16 cn);
  212.  
  213.   - Return a pointer to the next block on the input queue for cn, 
  214.     or (NDB *)NULL if there are no packets queued.
  215.   - This is potentially the most efficient way of reading the
  216.     input queue, because the NDB contains a point to the actual
  217.     packet that was read in initially.  No data has been copied
  218.     up to this point.
  219.   - There is no way defined for CNget_NDB() to return any other
  220.     connection error status.
  221.   - The NDB structure is defined in TRANSPRT.H
  222.   - Since CNget_NDB() unlinks the packet from the input queue,
  223.     you must use KRfree() to free the packet and the NDB structure
  224.     as well.  The following code is a guide..
  225.  
  226.         NDB *blk = CNget_NDB(cn);
  227.  
  228.         if (blk != (NDB *)NULL) {
  229.             process_block(blk);
  230.  
  231.             if (blk->ptr)           /* blk->ptr will never be NULL, though */
  232.                 KRfree(blk->ptr);
  233.  
  234.             KRfree(blk);
  235.         }
  236.  
  237.  
  238. int16   cdecl CNget_block(int16 cn, char *blk, int16 len);
  239.  
  240.   - Fills a block starting at blk with len bytes from cn.
  241.   - If the input queue has less than len bytes, then no
  242.     data will be transferred.
  243.   - Returns the number of bytes you requested, or an
  244.     error code.  E_NODATA is *not* a fatal error.
  245.  
  246.  
  247. void    cdecl housekeep(void);
  248.  
  249.   - Performs internal housekeeping duties.
  250.     You don't really need to call this function, but an explanation
  251.     is necessary.  housekeep() is called internally by several
  252.     of the other functions listed here.  In particular, all
  253.     of the CN input functions call housekeep() *except* CNget_char().
  254.     (otherwise a whole packet could be received every time CNget_char()
  255.     is called!)
  256.     
  257.   - STiK does not do any background or interrupt processing.
  258.     Everything is acheived by polling.  housekeep() is the
  259.     central function of STiK that does this polling.  It calls
  260.     these functions:-
  261.  
  262.     do_resolve();       Resolver processing, including reading packets
  263.     slip_in();          Reading the serial port
  264.     slip_out();         Writing to the serial port
  265.     tcp_timer();        TCP retransmissions
  266.     frag_ttl_check();   Check time to live in fragment reassembly queue
  267.  
  268.   - Housekeep is now driven by the system_timer interupt.  So it runs
  269.     up to a maximum of 50/sec.  The event_multi in the .ACC no longer
  270.     calls housekeep().  This avoids several problems with Magic.
  271.  
  272.   - NOTE that the efficiency of STiK relates to this function, but I
  273.     have to admit that housekeep() has not been carefully thought out.
  274.     However, if the functions called by housekeep() have no work
  275.     to do, they return quickly.  All the same, they can each be called
  276.     many times each second.
  277.  
  278. int16   cdecl resolve(char *dn, char **rdn, uint32 *alist, int16 lsize);
  279.  
  280.   - Resolve a domain name into one or more IP addresses.
  281.     dn is the domain name.
  282.     rdn is the real domain name, which is returned if dn is an alias (CNAME).
  283.     alist is a pointer to an array where the IP address(s) are returned.
  284.     lsize is the size of that array.
  285.   - If the information is in local cache, then resolve will return it
  286.     immediately, otherwise an algorithm for query of nameservers
  287.     is initiated.  This can take some time, however, the resolver has
  288.     an internal limit on the amout of work it will do in attempting
  289.     to resove a hostname.  (Hence the error code `work limit reached')
  290.   - If rdn == (char **)NULL then no value is assigned to it.
  291.     Otherwise, a pointer to the domain name associated with the addresses
  292.     is assigned to *rdn, even if it is the same as that requested.
  293.     This pointer must be freed using KRfree().
  294.   - If you pass a dotted decimal ip address to resolve, and request the rdn,
  295.     you will just get the dotted decimal ip back.  This is a kludge, but
  296.     better than the old manner of just crashing.
  297.   - resolve() returns the number of addresses copied to alist,
  298.     or a negative error code.
  299.   - In retrospect, it might not have been all that smart of me to write
  300.     my own DNS resolver, but it is at least educational :-))
  301.     All the same, it is *not* yet finished.  There are some bugs in
  302.     the code at present, and also inefficiency in my algorithm.
  303.   - I'll work on improving it when (if?) I get the chance.
  304.   - NOTE that STiK.ACC will save the dns cache to domain.txt
  305.     every five minutes if AES is active and STiK is enabled.
  306.  
  307.  
  308. void    cdecl ser_disable(void);
  309.  
  310.   - This function disables the serial port prior to disk I/O
  311.     It should only be necessary for combinations of baud rate/
  312.     cpu speed that do not allow DMA and serial I/O to work together.
  313.     Internally, it calls Jan Kriesten's DEVICE.LIB function
  314.     StopReceiver().  This, in turn, calls an IOCTL function
  315.     that might only work with HSMODEM loaded.  I'm not sure.
  316.   - In the current version of STiK this (and ser_enable)
  317.     return without doing anything.  I'm waiting for bug
  318.     reports before I decide what to do with it.
  319.   - NOTE that if the port is disabled (in later STiK versions)
  320.     it *must* be reenabled immediately after the disk I/O, or
  321.     that is the end of the TCP session :-))
  322.  
  323.  
  324. void    cdecl ser_enable(void);
  325.  
  326.   - See above...
  327.  
  328.  
  329. int16   cdecl set_flag(int16 flag);
  330.  
  331.   - This calls an assembler routine that sets one of 64 possible
  332.     flags using TAS.  The idea is that with proper flag setting
  333.     STiK should function properly in a pre-emptive multitasking
  334.     environment.  They could also be used for locking of other
  335.     well defined processes, such as mailers etc.
  336.   - Currently I'm only using the first two of these flags, for
  337.     housekeep() and do_resolve() which are not re-entrant.
  338.   - I've yet to actually do the work which would ensure proper
  339.     function of STiK in a pre-emptive environment, so if it
  340.     does work, that's accidental.
  341.   - set_flag() returns TRUE if the flag was already set
  342.     (ie: Someone else owns the lock) or FALSE if the flag was clear,
  343.     and set_flag() changed it successfully.  (ie: the lock is ours).
  344.     (in other words, set_flag() returns the value the flag had
  345.      before this call)
  346.  
  347.   - NOTE that anyone wishing to define a new lock should coordinate
  348.     with me!!!
  349.  
  350.  
  351. void    cdecl clear_flag(int16 flag);
  352.  
  353.   - Clears a flag regardless of it's current status.  Returns nothing.
  354.  
  355.  
  356. CIB * cdecl CNgetinfo(int16 cn);
  357.  
  358.   - Returns a pointer to a CIB structure that has information
  359.     about the connection associated with the handle `cn'.
  360.   - This includes protocol, remote host, remote port, and
  361.     the local port.  The address of the local host can be
  362.     found with stik_cfg->client_ip
  363.   - The pointer is to a live part of the connection information,
  364.     so don't change anything unless you know what you're doing.
  365.   - The definition of a CIB can be found in the `trasnprt.h' file.
  366.  
  367. int16     cdecl on_port(char *port);
  368.  
  369.   - Returns true if port was succesfully opened
  370.   - This turns a physical port on.  It is mainly for use
  371.     by a Dialer.
  372.   - port is the char *name from the DEV_LIST structure.
  373.  
  374.   - if port is already open this call will return TRUE
  375.   - if port doesn't exist on machine this will return False
  376.  
  377. void      cdecl off_port(char *port);
  378.  
  379.   - Turns a physical port off.
  380.   - port is the char *name from the DEV_LIST structure.
  381.   - mainly for use with a Dialer.
  382.   - experimentation with this function on an active port will
  383.      probably kill the connection.  Play at your own risk!
  384.      
  385. int16 cdecl setvstr(char *vs, char *value);
  386.  
  387.   - sets a value in the cfg->cv array.
  388.   - If the value is already present it changes it.
  389.  
  390.  /*  Note it doesn't do the following yet.  Right now it only changes
  391.      existing string*/
  392.   - If the value isn't present then it adds it.
  393.   
  394.   - returns TRUE if variable was changed/set
  395.   - returns FALSE if array is already full and the variable doesn't exist
  396.  
  397. int16     cdecl query_port(char *port);  
  398.  
  399.   - Checks if a given port is active.
  400.   
  401.   - returns TRUE if port is active
  402.   - returns FALSE if port is inactive
  403.   
  404. int16 cdecl g_resolve(char *, char **, uint32 *, int16);
  405.  
  406.   -  The only difference between this and resolve is that the code
  407.      uses an evnt_multi.  So it should be non blocking.  But it can
  408.      only be used from GEM applications.
  409.  
  410. int16 cdecl g_TCP_wait_state(int16 cn, int16 state, int16 timeout)
  411.  
  412.   - This is the GEM version of TCP_wait_state, in all other respects
  413.       it functions the same.  May only be called from a GEM application.
  414.  
  415. **** NOTE g_TCP_wait_state is experimental and not functioning properly
  416.      yet ****